GtkStyleContext: Add gtk_render_focus().
authorCarlos Garnacho <carlosg@gnome.org>
Sat, 27 Mar 2010 19:19:53 +0000 (20:19 +0100)
committerCarlos Garnacho <carlosg@gnome.org>
Sat, 4 Dec 2010 14:36:56 +0000 (15:36 +0100)
gtk/gtkstylecontext.c
gtk/gtkstylecontext.h

index bce74a72344d348a31d87389e8fdc5b9e6ca0ac9..3c5cb88db58d23d1a2bb39425dfd2eb21bd867af 100644 (file)
@@ -714,5 +714,26 @@ gtk_render_expander (GtkStyleContext *context,
   engine_class->render_expander (priv->theming_engine, cr, x, y, width, height);
 }
 
+void
+gtk_render_focus (GtkStyleContext *context,
+                  cairo_t         *cr,
+                  gdouble          x,
+                  gdouble          y,
+                  gdouble          width,
+                  gdouble          height)
+{
+  GtkStyleContextPrivate *priv;
+  GtkThemingEngineClass *engine_class;
+
+  g_return_if_fail (GTK_IS_STYLE_CONTEXT (context));
+  g_return_if_fail (cr != NULL);
+
+  priv = GTK_STYLE_CONTEXT_GET_PRIVATE (context);
+  engine_class = GTK_THEMING_ENGINE_GET_CLASS (priv->theming_engine);
+
+  _gtk_theming_engine_set_context (priv->theming_engine, context);
+  engine_class->render_focus (priv->theming_engine, cr, x, y, width, height);
+}
+
 #define __GTK_STYLE_CONTEXT_C__
 #include "gtkaliasdef.c"
index a54a431a01ac14e5800e9e5636d6fb2be01fa30e..416a0e7f9d30a781d5e6d7e594980e239b0de5ae 100644 (file)
@@ -139,6 +139,12 @@ void gtk_render_expander (GtkStyleContext *context,
                           gdouble          y,
                           gdouble          width,
                           gdouble          height);
+void gtk_render_focus    (GtkStyleContext *context,
+                          cairo_t         *cr,
+                          gdouble          x,
+                          gdouble          y,
+                          gdouble          width,
+                          gdouble          height);
 
 G_END_DECLS